098f97d7c256e52a9f6c9385bd12a5f645b22d6d,DynaReporting/Frameworks/WRReporting/Sources/er/reporting/WRRecordGroup.java,WRRecordGroup,showTotalsOnlyAsCells,#,239

Before Change




    public boolean showTotalsOnlyAsCells() {
        if (this.showTotalsOnly() && !this.showAsTable().equals("true")) {
            return true;
        }
        return false;

After Change




    public boolean showTotalsOnlyAsCells() {
        if (this.showTotalsOnly() && !this.showAsTable()) {
            return true;
        }
        return false;